home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1996 October / Designer's Club 1996 October.iso / mac / Idea Source / POTTS.DIR / 00038.ls < prev    next >
Encoding:
Text File  |  1996-09-13  |  846 b   |  41 lines

  1. on exitFrame
  2.   if the movieRate of sprite 9 then
  3.     go(the frame)
  4.     if rollOver(2) then
  5.       puppetSprite(2, 1)
  6.       set the castNum of sprite 2 to 6
  7.       updateStage()
  8.     else
  9.       puppetSprite(2, 0)
  10.     end if
  11.     if rollOver(3) then
  12.       puppetSprite(3, 1)
  13.       set the castNum of sprite 3 to 7
  14.       updateStage()
  15.     else
  16.       puppetSprite(3, 0)
  17.     end if
  18.     if rollOver(4) then
  19.       puppetSprite(4, 1)
  20.       set the castNum of sprite 4 to 8
  21.       updateStage()
  22.     else
  23.       puppetSprite(4, 0)
  24.     end if
  25.     if rollOver(5) then
  26.       puppetSprite(5, 1)
  27.       set the castNum of sprite 5 to 9
  28.       updateStage()
  29.     else
  30.       puppetSprite(5, 0)
  31.     end if
  32.     if rollOver(6) then
  33.       puppetSprite(6, 1)
  34.       set the castNum of sprite 6 to 40
  35.       updateStage()
  36.     else
  37.       puppetSprite(6, 0)
  38.     end if
  39.   end if
  40. end
  41.